【例子介绍】你画我猜c#,winform版
用c# winfrom编写的 局域网 联网的小游戏 可以多人玩 分为了 出题器 客户端 和 服务端 技术文档和源码都很详细
【相关图片】
【源码结构】
文件清单
└── 你画我猜游戏
├── 作者相关.txt
├── 你换我猜工程文件
│ ├── 传送
│ │ └── 传送
│ │ └── 传送
│ │ ├── 客户端
│ │ │ ├── CAPClient
│ │ │ │ ├── bin
│ │ │ │ │ └── Debug
│ │ │ │ │ ├── 123.wma
│ │ │ │ │ ├── 99.mp3
│ │ │ │ │ ├── 99.wav
│ │ │ │ │ ├── boom.swf
│ │ │ │ │ ├── CAPClient.exe
│ │ │ │ │ ├── CAPClient.pdb
│ │ │ │ │ ├── CAPClient.vshost.exe
│ │ │ │ │ └── CAPClient.vshost.exe.manifest
│ │ │ │ ├── CAPClient.csproj
│ │ │ │ ├── CAPClient.csproj.user
│ │ │ │ ├── Func.cs
│ │ │ │ ├── mainFrm.cs
│ │ │ │ ├── mainFrm.Designer.cs
│ │ │ │ ├── mainFrm.resx
│ │ │ │ ├── obj
│ │ │ │ │ ├── Debug
│ │ │ │ │ │ ├── CAPClient.csproj.FileListAbsolute.txt
│ │ │ │ │ │ ├── CAPClient.csproj.GenerateResource.Cache
│ │ │ │ │ │ ├── CAPClient.exe
│ │ │ │ │ │ ├── CAPClient.frmClient.resources
│ │ │ │ │ │ ├── CAPClient.pdb
│ │ │ │ │ │ ├── CAPClient.Properties.Resources.resources
│ │ │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ │ │ ├── GenerateResource-ResGen.read.1.tlog
│ │ │ │ │ │ ├── GenerateResource-ResGen.write.1.tlog
│ │ │ │ │ │ ├── Refactor
│ │ │ │ │ │ ├── ResGen.read.1.tlog
│ │ │ │ │ │ ├── ResGen.write.1.tlog
│ │ │ │ │ │ └── TempPE
│ │ │ │ │ │ └── Properties.Resources.Designer.cs.dll
│ │ │ │ │ └── Release
│ │ │ │ │ ├── CAPClient.csproj.FileListAbsolute.txt
│ │ │ │ │ ├── CAPClient.csproj.GenerateResource.Cache
│ │ │ │ │ ├── CAPClient.exe
│ │ │ │ │ ├── CAPClient.frmClient.resources
│ │ │ │ │ ├── CAPClient.pdb
│ │ │ │ │ ├── CAPClient.Properties.Resources.resources
│ │ │ │ │ └── TempPE
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── CAPClient.sln
│ │ │ └── CAPClient.suo
│ │ └── 服务端
│ │ ├── CAPServer
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── AxInterop.ShockwaveFlashObjects.dll
│ │ │ │ ├── bianda.swf
│ │ │ │ ├── boom.swf
│ │ │ │ ├── CAPServer.exe
│ │ │ │ ├── CAPServer.pdb
│ │ │ │ ├── CAPServer.vshost.exe
│ │ │ │ ├── CAPServer.vshost.exe.manifest
│ │ │ │ ├── congming.swf
│ │ │ │ ├── cool.swf
│ │ │ │ ├── dabian.swf
│ │ │ │ ├── fennu.swf
│ │ │ │ ├── Interop.ShockwaveFlashObjects.dll
│ │ │ │ ├── kill.swf
│ │ │ │ ├── outu.swf
│ │ │ │ └── song.swf
│ │ │ ├── CAPServer.csproj
│ │ │ ├── FlashShow.cs
│ │ │ ├── frm_boom.cs
│ │ │ ├── frm_boom.Designer.cs
│ │ │ ├── frm_boom.resx
│ │ │ ├── frm_flower.cs
│ │ │ ├── frm_flower.Designer.cs
│ │ │ ├── frm_flower.resx
│ │ │ ├── Func.cs
│ │ │ ├── mainFrm.cs
│ │ │ ├── mainFrm.Designer.cs
│ │ │ ├── mainFrm.resx
│ │ │ ├── obj
│ │ │ │ ├── Debug
│ │ │ │ │ ├── AxInterop.ShockwaveFlashObjects.dll
│ │ │ │ │ ├── CAPServer.csproj.FileListAbsolute.txt
│ │ │ │ │ ├── CAPServer.csproj.GenerateResource.Cache
│ │ │ │ │ ├── CAPServer.csproj.ResolveComReference.cache
│ │ │ │ │ ├── CAPServer.exe
│ │ │ │ │ ├── CAPServer.frm_boom.resources
│ │ │ │ │ ├── CAPServer.frm_flower.resources
│ │ │ │ │ ├── CAPServer.frmServ.resources
│ │ │ │ │ ├── CAPServer.pdb
│ │ │ │ │ ├── CAPServer.Properties.Resources.resources
│ │ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ │ ├── Interop.ShockwaveFlashObjects.dll
│ │ │ │ │ ├── Refactor
│ │ │ │ │ ├── ResGen.read.1.tlog
│ │ │ │ │ ├── ResGen.write.1.tlog
│ │ │ │ │ └── TempPE
│ │ │ │ │ └── Properties.Resources.Designer.cs.dll
│ │ │ │ └── Release
│ │ │ │ ├── CAPServer.csproj.FileListAbsolute.txt
│ │ │ │ ├── CAPServer.csproj.GenerateResource.Cache
│ │ │ │ ├── CAPServer.exe
│ │ │ │ ├── CAPServer.frmServ.resources
│ │ │ │ ├── CAPServer.pdb
│ │ │ │ ├── CAPServer.Properties.Resources.resources
│ │ │ │ └── TempPE
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── CAPServer.sln
│ │ └── CAPServer.suo
│ └── 抽取随机词组
│ ├── Demo
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── Demo.exe
│ │ │ ├── Demo.pdb
│ │ │ ├── Demo.vshost.exe
│ │ │ └── Demo.vshost.exe.manifest
│ │ ├── Demo.csproj
│ │ ├── Form1.cs
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.resx
│ │ ├── obj
│ │ │ └── x86
│ │ │ └── Debug
│ │ │ ├── Demo.csproj.FileListAbsolute.txt
│ │ │ ├── Demo.exe
│ │ │ ├── Demo.Form1.resources
│ │ │ ├── Demo.pdb
│ │ │ ├── Demo.Properties.Resources.resources
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── GenerateResource.read.1.tlog
│ │ │ ├── GenerateResource.write.1.tlog
│ │ │ └── TempPE
│ │ ├── Program.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── Demo.sln
│ └── Demo.suo
├── 你画我猜可执行文件
│ ├── 我猜必要文件
│ │ └── 99.wav
│ ├── 服务1052
│ │ └── CAPServer.exe
│ ├── 服务1121
│ │ └── CAPServer.exe
│ ├── 服务必要文件
│ │ ├── AxInterop.ShockwaveFlashObjects.dll
│ │ ├── bianda.swf
│ │ ├── boom.swf
│ │ ├── congming.swf
│ │ ├── cool.swf
│ │ ├── dabian.swf
│ │ ├── fennu.swf
│ │ ├── Interop.ShockwaveFlashObjects.dll
│ │ ├── kill.swf
│ │ ├── outu.swf
│ │ └── song.swf
│ └── 题目获取器
│ ├── timu.txt
│ └── title.exe
└── 你画我猜技术文档
├── 你画我猜分析.docx
├── 你画我猜用户使用手册.docx
└── 你画我猜简介及规则.docx
43 directories, 142 files
评论